home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 2001 July / PCDirect July 2001.iso / SUPPORT / MSACM / FIXMSACM.BAT
Encoding:
DOS Batch File  |  2001-03-21  |  559 b   |  24 lines

  1. @echo off
  2. echo Ensure Correct Audio Compression Manager...
  3. echo Version 1.1 By Lewis Marshall (DK Multimedia)
  4. echo.
  5. if not exist %windir%\*.* goto SpecWin
  6. if not exist \support\Win95\msacm\fixmsacm.bat goto BadRunDir
  7. md c:\~msacm.tmp
  8. copy \support\Win95\msacm\files\*.* c:\~msacm.tmp\*.*
  9. c:
  10. cd \~msacm.tmp
  11. start msacm.pif
  12. goto End
  13.  
  14. :SpecWin
  15. echo This batch file should only be run under Windows 95.
  16. echo.
  17. goto End
  18.  
  19. :BadRunDir
  20. echo This batch file is designed only to run from the CD-ROM from the support dirrectory.
  21. echo.
  22. goto End
  23.  
  24. :End